projects
/
project
/
libubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b10cd1c
)
examples: fix linking with json-c
author
Luka Perkov
<
[email protected]
>
Thu, 3 Jul 2014 10:28:22 +0000
(12:28 +0200)
committer
Felix Fietkau
<
[email protected]
>
Thu, 3 Jul 2014 10:53:13 +0000
(12:53 +0200)
Signed-off-by: Luka Perkov <
[email protected]
>
examples/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/examples/CMakeLists.txt
b/examples/CMakeLists.txt
index 51b97dfc961f9134e3b2762221ecb88bafd0d800..2126d29842dfa045eaa865c2d3ac3e434e1a6ee2 100644
(file)
--- a/
examples/CMakeLists.txt
+++ b/
examples/CMakeLists.txt
@@
-11,8
+11,10
@@
ENDIF()
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..)
LINK_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..)
+FIND_LIBRARY(json NAMES json-c json)
+
ADD_EXECUTABLE(blobmsg-example blobmsg-example.c)
-TARGET_LINK_LIBRARIES(blobmsg-example ubox blobmsg_json
json
)
+TARGET_LINK_LIBRARIES(blobmsg-example ubox blobmsg_json
${json}
)
ADD_EXECUTABLE(ustream-example ustream-example.c)
TARGET_LINK_LIBRARIES(ustream-example ubox)